home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / oper_sys / fp / ifp_unix.lzh / ifp / fproot / math / linear / L < prev    next >
Encoding:
Text File  |  1987-02-09  |  173 b   |  11 lines

  1. (* L part of LU decomposition of matrix *)
  2. DEF L AS
  3.    IF Singleton THEN #<<1.0>>
  4.    ELSE 
  5.       [
  6.          Li1,
  7.      Aik | [EACH #0 END,L] | apndl
  8.       ] | ApndlCol
  9.    END;
  10.  
  11.